home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / ftime.0 < prev    next >
Text File  |  1996-09-02  |  2KB  |  45 lines

  1.  
  2. FTIME(3)                   UNIX Programmer's Manual                   FTIME(3)
  3.  
  4. NNAAMMEE
  5.      ffttiimmee - get date and time
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ttiimmeebb..hh>>
  10.  
  11.      _i_n_t
  12.      ffttiimmee(_s_t_r_u_c_t _t_i_m_e_b _*_t_p)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      TThhiiss iinntteerrffaaccee iiss oobbssoolleetteedd bbyy gettimeofday((22))..  IItt iiss aavvaaiillaabbllee ffrroomm tthhee
  16.      ccoommppaattiibbiilliittyy lliibbrraarryy,, lliibbccoommppaatt..
  17.  
  18.      The ffttiimmee() routine fills in a structure pointed to by its argument, as
  19.      defined by <_s_y_s_/_t_i_m_e_b_._h>:
  20.  
  21.            /*
  22.             * Structure returned by ftime system call
  23.             */
  24.            struct timeb
  25.            {
  26.                      time_t  time;
  27.                      unsigned short millitm;
  28.                      short   timezone;
  29.                      short   dstflag;
  30.            };
  31.  
  32.      The structure contains the time since the epoch in seconds, up to 1000
  33.      milliseconds of more-precise interval, the local time zone (measured in
  34.      minutes of time westward from Greenwich), and a flag that, if nonzero,
  35.      indicates that Daylight Saving time applies locally during the appropri-
  36.      ate part of the year.
  37.  
  38. SSEEEE AALLSSOO
  39.      gettimeofday(2),  settimeofday(2),  time(2),  ctime(3)
  40.  
  41. HHIISSTTOORRYY
  42.      The ffttiimmee function appeared in 4.2BSD.
  43.  
  44. 4th Berkeley Distribution        June 4, 1993                                1
  45.